﻿/*遮罩*/
.popup-mask {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50);
	display: none;
}
/*弹窗*/
.popup-wrap {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 300px;
	min-height: 85px;
	background-color: #fff;
	box-shadow: 2px 2px 10px #555;
	border-radius: 3px;
	overflow: hidden;
	display: none;
}
.popup-wrap .popup-title {
	height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	background-color: #666;
	overflow: hidden;
}
.popup-wrap .popup-body {
	padding: 10px;
	font-size: 14px;
	text-align: center;
}
.popup-wrap .popup-operate {
	margin-top: 16px;
	text-align: center;
}
.popup-wrap .popup-operate input[type=button] {
	height: 35px;
	line-height: 35px;
	padding: 0 20px;
	margin-right: 10px;
	font-size: 16px;
	border: 1px solid;
	border-radius: 3px;
	cursor: pointer;
}
.popup-wrap .popup-operate input[type=button]:last-child {
	margin-right: 0;
}
.popup-wrap .popup-close {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 40px;
	line-height: 38px;
	font-size: 20px;
	color: #fff;
	text-align: center;
	cursor: pointer;
}
/*按钮样式（为了美观，正式使用时可删除）*/
.button-style {
	display: block;
	padding: 10px;
	margin-bottom: 10px;
	color: #fff;
	background-color: #444;
	border: solid 1px #333;
	border-radius: 10px;
	cursor: pointer;
}